home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 026-050 / scopedisk33 / rxenv / readme < prev    next >
Text File  |  1995-03-18  |  3KB  |  59 lines

  1. Hello All!
  2.  
  3. The AREXX programs and other stuff included in this ARC are public domain,
  4. and you may do with them as you will.  Or, you can send me a couple of
  5. thousand bucks and never change them at all!  Your Choice! <grin>
  6.  
  7. What you need to do before you can use my stuff:
  8.  
  9.    1) I set up the following assigns, and you will need to assign these
  10. logical devices also (talking strictly Lattice C here!  I have never even
  11. seen a Manx compiler!):
  12.  
  13.          Assign LC:       SYS:Lattice/C      
  14.          Assign LINK:    LC:          
  15.          Assign QUAD:    RAM:
  16.          Assign LIB:    SYS:Lattice/Lib   
  17.          Assign INCLUDE: SYS:Lattice/IncludeFiles
  18.  
  19.          Assign Source: SYS:Source     
  20.          Assign Obj:    Source:Obj
  21.  
  22.    2) Purchase TxEd Plus, and AREXX.  I highly recommend WShell also!
  23.  
  24. What they are:
  25.  
  26.    1)   RXCOMP - After you have finished making changes to your source code,
  27. you can select the "Run Compile" option in the User menu.  "Run Compile"
  28. accesses compile.txed which will auto-magically save your source, and then
  29. call RXCOMP with the name of your file.  I did it this way so that you can
  30. type "RXCOMP foo" in WShell (another great program by Mr. Hawes!) and
  31. compile foo, or load foo into TxEd+ and compile it there.  The difference
  32. is that between AREXX programs with extention ".rexx" and those with
  33. ".txed".
  34.  
  35.    2) RXLINK - Basically, all RXLINK does is call BLINK using the "with"
  36. file "main.w".  All the "Run Link" menu option does is to call link.txed
  37. which calls RXLINK :).  I did it this way in case I get a brainstorm on how
  38. to set up link.txed to figure out WHICH "with" file I want to link with!
  39.  
  40.    3) RXMAKE - By comparing the dates on source files and object files,
  41. RXMAKE figures out if you have changed a source.  It will then create an
  42. execute file containing the lines "rxcomp foo-1" ... "rxcomp foo-y" and
  43. tack on the line "rxlink main" at the end.  I added the option to type
  44. "RXMAKE ALL", which will search your Source: directory and set up to
  45. compile ALL the .c files present in Source:.
  46.  
  47.  
  48. Known Bugs:
  49.  
  50. Basically, I only have one bug note to report, and that concerns the use of
  51. TxEd Plus.  I have noticed that if you have more that one TxEd+ editing
  52. window open, and you close any one of them, the menu alterations created
  53. in the startup.txed file go out the window (sorry, but that pun was
  54. intended! :).
  55.  
  56. This means that you will need to open up a command window "hit the HELP
  57. key!" and type "startup".  This will re-configure you back to the way you
  58. originally began your editing session.
  59.